home *** CD-ROM | disk | FTP | other *** search
/ Beginning Mac Programming / Beginning Mac Programming.bin / Open Me for REALbasic 3 / REALbasic 3.2 / Example Projects / Reusable Classes_Code / REALfishSource / bfsh-koc Folder / Main.c < prev   
C/C++ Source or Header  |  2000-09-05  |  596b  |  46 lines

  1. /*
  2.  * Author     :  Paul Kocher
  3.  * E-mail     :  pck@netcom.com
  4.  * Date       :  1997
  5.  * Description:  C implementation of the Blowfish algorithm.
  6.  */
  7.  
  8. #include <stdlib.h>
  9.  
  10. #include <assert.h>
  11.  
  12. #include <stdio.h>
  13.  
  14. #include "blowfish.h"
  15.  
  16.  
  17.  
  18. void main(void) {
  19.  
  20.   unsigned long L = 1, R = 2;
  21.  
  22.   BLOWFISH_CTX ctx;
  23.  
  24.  
  25.  
  26.   printf("%d\n", Blowfish_Test(&ctx));
  27.  
  28.  
  29.  
  30.   Blowfish_Init (&ctx, (unsigned char*)"TESTKEY", 7);
  31.  
  32.   Blowfish_Encrypt(&ctx, &L, &R);
  33.  
  34.   printf("%08lX %08lX\n", L, R);
  35.  
  36.   assert(L == 0xDF333FD2L && R == 0x30A71BB4L);
  37.  
  38.   Blowfish_Decrypt(&ctx, &L, &R);
  39.  
  40.   assert(L == 1 && R == 2);
  41.  
  42. }
  43.  
  44.  
  45.  
  46.